int 21 / 09H Dos interrupt 21h Function 09H to display a string. here u go simple program Here make sure that the string ends with a $ mov ah,09h mov dx,offset msg int 21h msg db "Hello world this is just a test $"